Add agentic development setup#35
Open
zbowling wants to merge 1 commit into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Adds repository-wide “agent-ready” configuration and documentation for Meta Quest / Horizon OS workflows, including MCP server setup and client-specific instruction files.
Changes:
- Introduces canonical agent guidance in
AGENTS.mdand surfaces it inREADME.md. - Adds MCP server configuration (
hzdb) and client-specific rules/prompts for multiple agent clients/editors. - Adds setup documentation for agentic tooling across supported clients.
Reviewed changes
Copilot reviewed 18 out of 18 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| opencode.jsonc | Adds OpenCode configuration pointing to repository instructions. |
| docs/AGENTIC_SETUP.md | Documents agent tooling setup and recommended client configurations. |
| README.md | Adds “Agent-ready development” section with setup pointers and a starter prompt. |
| GEMINI.md | Adds Gemini-specific instructions and install commands. |
| CLAUDE.md | Adds Claude Code-specific instructions and points to .mcp.json. |
| AGENTS.md | Adds canonical agent instructions plus project-specific Unity/SharedSpaces context. |
| .windsurfrules | Adds Windsurf rules pointing to AGENTS.md and hzdb MCP install. |
| .roo/rules/meta-quest-agentic-tools.md | Adds Roo Code rules for Meta Quest agentic tooling. |
| .opencode/commands/setup-meta-quest-tools.md | Adds an OpenCode command doc for installing hzdb MCP config. |
| .mcp.json | Adds project MCP server definition for hzdb. |
| .github/prompts/setup-meta-quest-agentic-tools.prompt.md | Adds a Copilot prompt for initial Meta Quest agentic setup. |
| .github/prompts/debug-on-quest.prompt.md | Adds a Copilot prompt geared toward debugging on Quest with hzdb. |
| .github/instructions/meta-quest.instructions.md | Adds global GitHub instructions to prefer Meta Quest agentic tools. |
| .github/copilot-instructions.md | Adds Copilot-specific instructions and MCP setup command. |
| .cursor/rules/meta-quest-agentic-tools.mdc | Adds Cursor rules preferring Meta Quest tooling and hzdb. |
| .cursor/mcp.json | Adds Cursor MCP server definition for hzdb. |
| .clinerules/meta-quest-agentic-tools.md | Adds Cline rules preferring Meta Quest tooling and hzdb. |
| .aider.conf.yml | Configures Aider to read AGENTS.md. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+27
to
+38
| | Client | Repo file | Recommended setup | | ||
| | -------------- | -------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | | ||
| | VS Code | `.vscode/extensions.json`, `.vscode/mcp.json`, `.github/copilot-instructions.md` | Install `meta.meta-vr-dev`; optionally run `npx -y @meta-quest/hzdb mcp install vscode` | | ||
| | Cursor | `.vscode/extensions.json`, `.cursor/mcp.json`, `.cursor/rules/*` | Install `meta.meta-vr-dev`; optionally run `npx -y @meta-quest/hzdb mcp install cursor` | | ||
| | Claude Code | `.mcp.json`, `CLAUDE.md` | `/plugin marketplace add meta-quest/agentic-tools`; `/plugin install meta-vr@meta-quest` | | ||
| | Gemini CLI | `GEMINI.md` | `gemini extensions install https://github.com/meta-quest/agentic-tools` | | ||
| | GitHub Copilot | `.github/copilot-instructions.md`, `.github/instructions/*`, `.github/prompts/*` | Use the repository instructions and install the recommended VS Code extension | | ||
| | Cline | `.clinerules/*`, `AGENTS.md` | Use `AGENTS.md`; configure MCP if supported | | ||
| | Roo Code | `.roo/rules/*`, `AGENTS.md` | Use `AGENTS.md`; configure MCP if supported | | ||
| | Windsurf | `.windsurfrules` | `npx -y @meta-quest/hzdb mcp install windsurf` | | ||
| | OpenCode | `opencode.jsonc`, `.opencode/*` | `npx -y @meta-quest/hzdb mcp install open-code` | | ||
| | Codex | `AGENTS.md` | `npx -y @meta-quest/hzdb mcp install codex` | |
| - ParrelSync (`com.veriorpies.parrelsync`) is intentionally included to support running two Editor instances side-by-side for multiplayer testing. | ||
| - The `com.meta.tutorial.framework` dependency comes from the sister `Unity-UtilityPackages` repo via Git URL — Unity will need network access on first import. | ||
|
|
||
| # Agent Instructions for this Meta Quest / Horizon OS Sample |
Comment on lines
+4
to
+5
| "command": "npx", | ||
| "args": ["-y", "@meta-quest/hzdb", "mcp", "server"] |
d3adc49 to
54afaf1
Compare
Adds repository instructions, MCP configuration, VS Code/Cursor extension recommendations, and setup docs for Meta Quest Agentic Tools.
54afaf1 to
ed97d0b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR makes the sample repository agent-ready for Meta Quest / Horizon OS development.
It adds:
AGENTS.md(tailored to this sample)hzdb(.mcp.json,.vscode/mcp.json,.cursor/mcp.json).vscode/extensions.json)CLAUDE.md), Gemini (GEMINI.md), Cursor (.cursor/rules/*), GitHub Copilot (.github/copilot-instructions.md,.github/instructions/*,.github/prompts/*), Cline (.clinerules/*), Roo (.roo/rules/*), Windsurf (.windsurfrules), OpenCode (opencode.jsonc,.opencode/commands/*), and Aider (.aider.conf.yml)docs/AGENTIC_SETUP.md)Recommended VS Code / Cursor extension:
https://marketplace.visualstudio.com/items?itemName=meta.meta-vr-dev
Meta Quest Agentic Tools:
https://github.com/meta-quest/agentic-tools
Test plan
.mcp.json,.vscode/mcp.json,.vscode/extensions.json,.cursor/mcp.json,opencode.jsonc)meta.meta-vr-devappears in.vscode/extensions.json@meta-quest/hzdbappears in.mcp.json,.vscode/mcp.json,.cursor/mcp.jsonREADME.mdmentions the Meta Horizon extensionNotes
This PR keeps repository-local instructions small and points to the central Meta Quest Agentic Tools repository for the full toolchain.